CopyMatrix
TheCopyMatrix
function copies the contents of one matrix into another matrix.
pascal void CopyMatrix (MatrixRecordPtr m1, MatrixRecord *m2);
m1
- Specifies the source matrix for the copy operation.
m2
- Contains a pointer to the destination matrix for the copy operation. The
CopyMatrix
function copies the values from the matrix specified by them1
parameter into this matrix.DESCRIPTION
TheCopyMatrix
function is a convenience function for copying the contents of one matrix to another. You can achieve the same results by using the Memory Manager'sBlockMove
routine, or by assigning the contents of one matrix record to another directly.ERROR CODES
None